home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
machserver
/
1.098
/
Include
/
checkScript
< prev
next >
Wrap
Text File
|
1990-10-08
|
497b
|
27 lines
#!/bin/csh -f
#
foreach file ( `echo *.h` )
set found = 0
foreach mod (`cat ../Modules`)
if ( -e ../$mod/$file ) then
set found = 1
endif
end
if ($found == 0) then
echo "Not found " $file
endif
end
foreach subDir (`echo *.md`)
foreach file ( `echo $subDir/*.h` )
set found = 0
foreach mod (`cat ../Modules`)
if ( -e ../$mod/$subDir/$file ) then
set found = 1
endif
end
if ($found == 0) then
echo "Not found " $subDir/$file
endif
end
endif